Get Destination
Route
/v2/streaming/destinations/{id}
Description
Retrieve a specific streaming destination by its unique identifier.
Method
GET
Inputs
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The unique identifier of the destination |
Output
| Field | Type | Description |
|---|---|---|
resources | array[Destination] | Array containing the requested destination |
errors | array[Error] | Any errors encountered |
Rate Limit
- 60 requests per minute per API key
- 5 concurrent requests per endpoint
Example Response
{
"resources": [
{
"id": "dest-123",
"name": "Security SIEM",
"description": "Primary security information and event management system",
"format": "json_lines",
"type": "https",
"encoding": "gzip",
"https_config": {
"uri": "https://siem.company.com/api/events",
"ignore_ssl_errors": false
}
}
],
"errors": []
}